Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Body
application/json
Update object of certain ID.
Update model:
POST /api/object/M1234567
{
"payload": {
"object_type": "model",
"name": "model name",
"content": {
"meta": {"entrance_file": "main.jl"},
"tree": [],
}
}
}
Update experiment:
POST /api/object/X1234567
{
"payload": {
"object_type": "experiment",
"name": "experiment name",
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.